home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 06 / 5 / DISK0658.ZIP / NOTES658.TXT < prev    next >
Text File  |  1980-01-04  |  2KB  |  53 lines

  1. Program name: DOS Toolkit (v1.0)
  2.  
  3. Author name:  Steve E Margison
  4. Address:      124 Sixth Street
  5.               Downers Grove, Il  60515
  6.  
  7. Tel number:   Compuserve (74435,1042)
  8.  
  9. Suggested Donation: $20.00 - includes soruce code
  10.  
  11. Program Description:
  12.  
  13. This diskette comprises a set of DOS utilities collectively called
  14. "Toolkit." Each program is documented with the one documentation
  15. file called TOOLKIT.DOC, which is about 17k. Each program is explained
  16. below. This package is excellent for hard drive users, but will be
  17. useful for anyone wishing to ease their DOS housekeeping. These programs
  18. will run under the IBM-PC with at least 128k memory.
  19.  
  20. INPATH.EXE:
  21.  
  22. This is a utility to locate an EXECUTABLE program in your PATH variable.
  23. It will report the location of the program which would be executed if
  24. you used the filename as a DOS command.  This is identical to the UNIX
  25. program "whereis".  INPATH will first look for the file in the current
  26. directory, and then look in the PATH environment variable (if it is
  27. present) in the order specified.  For each directory, INPATH first tries
  28. to locate a .COM file, then a .EXE file, then a .BAT file, since that is
  29. the order in which DOS searches for files.  On the first match, INPATH
  30. reports the directory and full filename of the program and then exits.
  31. If none are found, that fact is reported.
  32.  
  33. TC.EXE:
  34.  
  35. This is a Text Compare program, which works only on ASCII text files.
  36. It reports differences between files in a very friendly manner, unlike
  37. some other DIFF-type programs.  Most useful for subtle differences, such
  38. as changed words or spellings.  The program will report any lines which
  39. are different with the filename, line number, and a printout of the
  40. actual line.  If one file ends before the other, the program reports
  41. which file terminated first.
  42.  
  43. WC.EXE:
  44.  
  45. This is a Word Counting program which will report words, characters,
  46. lines, and a checksum on the file.  For non-text files, only the
  47. checksum is reported.  The program will report words, characters, lines,
  48. and a checksum, which is a simple binary addition of all character
  49. values.  No, it is not a CRC, but it is a quick check to see if it the
  50. same as another file under the same name.  Many options are available
  51. which tell the program to report ONLY specified items such as: only words,
  52. lines, or characters.
  53.